home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
taskv1
/
classlis.frm
next >
Wrap
Text File
|
1994-08-15
|
4KB
|
116 lines
VERSION 2.00
Begin Form ClassList
BackColor = &H00C0C0C0&
BorderStyle = 3 'Fixed Double
ClientHeight = 3675
ClientLeft = 1425
ClientTop = 2250
ClientWidth = 5145
ClipControls = 0 'False
ControlBox = 0 'False
Height = 4080
Left = 1365
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3675
ScaleWidth = 5145
Top = 1905
Width = 5265
Begin MListBox List2
AddItemHeight = 0
Alignment = 0 'None
AllowFocusRect = -1 'True
BackColor = &H00C0C0C0&
BorderStyle = 2 'Inset
CheckColor = &H00000000&
CheckStyle = 0 'Cross Style
DrawRegions = 1
EnableVirtualMsgs= 0 'False
ExtendedSelect = 0 'False
FallColor = &H00808080&
FindDirection = 0 'Forward
FindResult = 0 'Update ListIndex
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
GridColor = &H00808080&
GridStyle = 0 'Solid
Height = 2415
HiliteBackColor = &H00000000&
HiliteForeColor = &H00000000&
HorizontalGrids = -1 'True
ImageRegion = 0
ImageType = 0 'None
ItemHeight = 800
ItemWidth = 1560
Left = 150
ListBoxStyle = 0 'Fixed
MaskingColor = &H00FFFFFF&
MultiColumn = 0 'False
MultiSelect = 0 'False
NoIntegralHeight= 0 'False
OwnerDraw = 0 'False
RiseColor = &H00FFFFFF&
SelectMode = 0 'Normal
SortColumn = 0
Sorted = 0 'False
StringCompare = 0 'Case Sensitive
TabIndex = 1
Top = 615
Version = "04.50"
VerticalGrids = 0 'False
VirtualMsgZone = 0
Width = 4830
End
Begin CommandButton Close
Caption = "&Close"
Default = -1 'True
FontBold = 0 'False
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 390
Left = 3720
TabIndex = 0
Top = 3195
Width = 1300
End
Begin Label DescLabel
BackColor = &H00C0C0C0&
Caption = "Class Information"
Height = 420
Left = 165
TabIndex = 2
Top = 105
Width = 4800
End
End
'====================================================================================
'ClassLis.Frm - Copyright ⌐1994 michiel de bruijn, Rotterdam, The Netherlands
' Released for public use 16/08/1994. See TASKLIST.WRI for licensing details
'====================================================================================
DefInt A-Z
Sub Close_Click ()
Unload Me
End Sub
Sub Form_Load ()
'Make our window topmost (most topmost??) to prevent it
'from hiding behind the task list form
res% = SetWindowPos(Me.hWnd, -1, 0, 0, 0, 0, 3)
End Sub